home *** CD-ROM | disk | FTP | other *** search
/ Aminet 34 / Aminet 34 (2000)(Schatztruhe)[!][Dec 1999].iso / Aminet / dev / lang / SlimPython.lha / SlimPython / README.AMIGA < prev    next >
Encoding:
Text File  |  1999-10-21  |  3.0 KB  |  89 lines

  1.  
  2. README text for the source code for SlimPython 1.5.2
  3.  
  4.  
  5. SLIM PYTHON
  6. -----------
  7.  
  8. This is a stripped-to-the bone version of AmigaPython.  I removed the
  9. complex number and the long number types, all network code and various
  10. other modules like the regular expression ones.
  11.  
  12. The result is a very small version of AmigaPython which I'll call
  13. SlimPython.  Note that because it is so small it can be compiled again with
  14. the small data model (DATA=NEAR), which the full AmigaPython version can't.
  15.  
  16. It's ideally suited to be embedded in your own applications that don't
  17. require a full fledged Python interpreter.
  18.  
  19. See the Embed directory for an example.
  20.  
  21. You'll need the full version of AmigaPython because this archive doesn't
  22. contain the required Python library files.
  23.  
  24. No more docs here - get the full Source distribution for that.
  25.  
  26.  
  27.  
  28.  
  29.                     Irmen de Jong
  30.                     irmen@bigfoot.com
  31.                     October 20, 1999
  32.  
  33.  
  34.  
  35.  
  36.  
  37.     DISCLAIMER:
  38.  
  39. I  tried  to  make this program error-free and safe to use, for your and my
  40. own  benefit.   This  disclamer  applies  to the (small) part of the code I
  41. wrote  myself.   The  disclamer  from  the  copyright notice from Stichting
  42. Mathematisch  Centrum  (included  below)  applies  to the rest of the code,
  43. written by Guido van Rossum and others.
  44.   
  45. I  provide  this program "as is".  USE THE PROGRAM AT YOUR OWN RISK.  In no
  46. event will I be liable for damages to you - whether they arise from the use
  47. of  this  program  or  the  inability to use it, whether they are direct or
  48. consequential,  including,  but  not  limited  to,  the loss of data or the
  49. generation of inaccurate data.  No warranties are made.
  50.  
  51.  
  52.         Irmen de Jong.
  53.  
  54.  
  55.  
  56.  
  57.  
  58.     PYTHON COPYRIGHT NOTICE:
  59.  
  60.  
  61. Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
  62. The Netherlands.
  63.  
  64.                         All Rights Reserved
  65.  
  66. Permission to use, copy, modify, and distribute this software and its
  67. documentation for any purpose and without fee is hereby granted,
  68. provided that the above copyright notice appear in all copies and that
  69. both that copyright notice and this permission notice appear in
  70. supporting documentation, and that the names of Stichting Mathematisch
  71. Centrum or CWI or Corporation for National Research Initiatives or
  72. CNRI not be used in advertising or publicity pertaining to
  73. distribution of the software without specific, written prior
  74. permission.
  75.  
  76. While CWI is the initial source for this software, a modified version
  77. is made available by the Corporation for National Research Initiatives
  78. (CNRI) at the Internet address ftp://ftp.python.org.
  79.  
  80. STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH
  81. REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
  82. MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH
  83. CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
  84. DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  85. PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  86. TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  87. PERFORMANCE OF THIS SOFTWARE.
  88.  
  89.